home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / HTMLBoxView.java < prev    next >
Text File  |  1998-06-30  |  2KB  |  89 lines

  1. /*
  2.  * @(#)HTMLBoxView.java    1.4 97/09/30
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20. package com.sun.java.swing.text.html;
  21.  
  22. import java.util.Enumeration;
  23. import java.awt.*;
  24. import com.sun.java.swing.border.*;
  25. import com.sun.java.swing.text.*;
  26.  
  27. /**
  28.  * A view implementation to display an html box with
  29.  * CSS specifications.
  30.  *
  31.  * @author  Timothy Prinzing
  32.  * @version 1.4 09/30/97
  33.  */
  34. class HTMLBoxView extends BoxView  {
  35.  
  36.     /**
  37.      * Creates a new view that represents an 
  38.      * html box.  This can be used for a number
  39.      * of elements.
  40.      *
  41.      * @param elem the element to create a view for
  42.      * @param axis either View.X_AXIS or View.Y_AXIS
  43.      */
  44.     public HTMLBoxView(Element elem, int axis) {
  45.     super(elem, axis);
  46.     setParagraphInsets(elem.getAttributes());
  47.     }
  48.  
  49.     /**
  50.      * Gets the resize weight.
  51.      *
  52.      * @param axis may be either X_AXIS or Y_AXIS
  53.      * @return the weight
  54.      * @exception IllegalArgumentException for an invalid axis
  55.      */
  56.     public int getResizeWeight(int axis) {
  57.     switch (axis) {
  58.     case View.X_AXIS:
  59.         return 1;
  60.     case View.Y_AXIS:
  61.         return 0;
  62.     default:
  63.         throw new IllegalArgumentException("Invalid axis: " + axis);
  64.     }
  65.     }
  66.  
  67.     /**
  68.      * Gets the alignment.
  69.      *
  70.      * @param axis may be either X_AXIS or Y_AXIS
  71.      * @return the alignment
  72.      */
  73.     public float getAlignment(int axis) {
  74.     switch (axis) {
  75.     case View.X_AXIS:
  76.         return 0;
  77.     case View.Y_AXIS:
  78.         float span = getPreferredSpan(View.Y_AXIS);
  79.         View v = getView(0);
  80.         float above = v.getPreferredSpan(View.Y_AXIS);
  81.         float a = (((int)span) != 0) ? (above * v.getAlignment(View.Y_AXIS)) / span: 0;
  82.         return a;
  83.     default:
  84.         throw new IllegalArgumentException("Invalid axis: " + axis);
  85.     }
  86.     }
  87.  
  88. }
  89.